home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Windows / WindowDefaults.h < prev    next >
Text File  |  1997-06-28  |  437b  |  26 lines

  1. // WindowDefaults.h
  2.  
  3. #ifndef WindowDefaults_h
  4. #define WindowDefaults_h
  5.  
  6. #ifndef Rectangle_h
  7. #include "Rectangle.h"
  8. #endif
  9.  
  10. class String255;
  11.  
  12. class WindowDefaults
  13.   {
  14.     public:
  15.         virtual GDHandle DefaultScreen() const;
  16.         virtual Rectangle DefaultPosition( GDHandle screen ) const = 0;
  17.         
  18.         virtual void GetDefaultName( String255& ) const;
  19.         
  20.         virtual uint32 DefaultIndex() const;
  21.         
  22.         virtual bool DefaultVisibility() const;
  23.   };
  24.  
  25. #endif
  26.